home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / apturl < prev    next >
Text File  |  2009-09-18  |  273b  |  12 lines

  1. #!/bin/sh
  2.  
  3. if [ "$KDE_FULL_SESSION" = "true" ] && [ -x /usr/bin/apturl-kde ]; then
  4.     apturl-kde $@
  5. elif [ -x /usr/bin/apturl-gtk ]; then
  6.     apturl-gtk $@
  7. elif [ -x /usr/bin/apturl-kde ]; then
  8.     apturl-kde $@
  9. else
  10.     echo "Please install apturl-gtk or apturl-kde."
  11. fi
  12.